home *** CD-ROM | disk | FTP | other *** search
/ Exame Informatica 139 / Exame Informatica 139.iso / Revista / Flash / Uniform Server / diskw / home / admin / www / includes / config.inc.php < prev    next >
Encoding:
PHP Script  |  2005-05-05  |  812 b   |  33 lines

  1. <?
  2. /*
  3. ####################################################
  4. # Name: The Uniform Server Configuration 1.0
  5. # Developed By: The Uniform Server Development Team
  6. # Modified Last By: Olajide Olaolorun (empirex) 
  7. # Web: http://www.uniformserver.com
  8. ####################################################
  9. */
  10.  
  11. /* Globals */
  12. // Version
  13. $version = "2.0";
  14. $uniserver = file_get_contents("includes/.version");
  15.  
  16. /* Path variables - NO BACKSLASH */
  17. // Local Variables
  18. $drive = "W:";
  19. $usr = "$drive/usr";
  20. $www = "$drive/www";
  21. $home = "$drive/home";
  22.  
  23. /* Web Variables - NO BACKSLASH */ 
  24. // Host
  25. $host = $_SERVER["HTTP_HOST"];
  26. // Server - DO NOT CHANGE
  27. $server = "http://$host";
  28. $server_path = $_SERVER["DOCUMENT_ROOT"];
  29. // Admin Panel
  30. $apanel = "$server/apanel";
  31. $apanel_path = "$home/admin/www";
  32. ?>
  33.